home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: delta / whiteline CD Series - delta.iso / progtool / c / sozobon / sozlib15.zoo / sozdistr / examples / world.mk < prev    next >
Makefile  |  1995-04-02  |  417b  |  24 lines

  1. #!make -f
  2. # @(#)world.mk, world, SozobonX examples
  3. #
  4. # make file for 'world', in SozobonX distribution
  5. #
  6.  
  7. # run the optimizer:
  8. CFLAGS = -O
  9.  
  10. # use the complete std library (including floating point support)
  11. # and run the optimizer
  12. #CFLAGS = -O -f
  13.  
  14. # use math library and the complete std library (including floating point support)
  15. LDFLAGS = -lm
  16.  
  17. world: world.tos world2.tos
  18.  
  19. world.tos: world.c
  20.  
  21. world2.tos: world2.c
  22.  
  23.  
  24.